home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 25 / Cream of the Crop 25.iso / bbs / mhis020.zip / CRITTASK.MEX < prev    next >
Text File  |  1996-09-06  |  386b  |  16 lines

  1. #include <max.mh>
  2. #include "callers.mh"
  3.  
  4. int main () {
  5.   string: temp_string;
  6.   read_callers ();
  7.   input_str (temp_string, INPUT_LB_LINE, 0, 0,
  8.     COL_LBLUE + "Only show activity on which task (default = all): " + COL_CYAN);
  9.   if (temp_string = "") {
  10.     callers.criteria.task := -1;
  11.     }
  12.   else callers.criteria.task := strtoi (temp_string);
  13.   write_callers ();
  14.   }
  15.  
  16.